Page.CurveTo Method (console safe)
Appends a Bézier curve to the current path using the control points (x1, y1) and (x2, y2) and (x3, y3), then sets the current point to (x3, y3).

CurveTo(
x1
as Single,
y1
as Single,
x2
as Single,
y2
as Single,
x3
as Single,
y3
as Single)
Parameters
- x1
- First control point (x coord)
- y1
- First control point (y coord)
- x2
- Second control point (x coord)
- y2
- Second control point (y coord)
- x3
- Third control point (x coord)
- y3
- Third control point (y coord)
Remarks

See Also
Page Class